home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ubuntu-docs.postinst < prev    next >
Text File  |  2009-10-18  |  613b  |  25 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4.  
  5.  
  6. case "$1" in
  7.   configure)
  8.     update-alternatives \
  9.       --install /usr/share/ubuntu-artwork/home/index.html \
  10.       firefox-homepage /usr/share/ubuntu-artwork/home/firefox-index.html 40 \
  11.       --slave /usr/share/ubuntu-artwork/home/locales \
  12.       firefox-homepage-locales /usr/share/ubuntu-artwork/home/locales-ubuntu
  13.  
  14.         link=/usr/share/gnome/help/libs
  15.         if [ -d "$link" ] && ! [ -L "$link" ] \
  16.            && dpkg --compare-versions "$2" lt-nl 9.04.7
  17.         then
  18.                 rmdir "$link"
  19.                 ln -s ../../ubuntu-docs/libs "$link"
  20.         fi
  21.   ;;
  22. esac
  23.  
  24. exit 0
  25.